home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Games / xrobots / Imakefile < prev    next >
Makefile  |  1995-05-03  |  682b  |  26 lines

  1.  
  2. /*   SCORE_FILE = -DSCORE_FILE=\"/usr/games/lib/xrobotscores\"    */
  3.       MAXSCORES = -DMAXSCORES=20
  4.            MAXX = -DMAXX=35
  5.            MAXY = -DMAXY=20
  6.          RANDOM = -DNO_RANDOM
  7.         DEFINES = $(SCORE_FILE) $(MAXSCORES) $(MAXX) $(MAXY) $(RANDOM)
  8.  
  9.            SRCS = actions.c game.c graphics.c main.c score.c
  10.            OBJS = actions.o game.o graphics.o main.o score.o
  11.  
  12.        INCLUDES = -I$(TOP) -I$(TOOLKITSRC)
  13. LOCAL_LIBRARIES = $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB)
  14.   SYS_LIBRARIES = -lm
  15.  
  16. all:: xrobots
  17.  
  18. ComplexProgramTarget(xrobots)
  19. /*
  20.  *  The following is a matter of preference:
  21.  *
  22.  *  InstallManPage(xrobots,$(MANDIR))
  23.  *  InstallProgram(xrobots,$(BINDIR))
  24.  */
  25.  
  26.